Desktop edition桌面版
One app. Every computer.一个应用,掌控每台电脑。
A native app for macOS, Linux and Windows — drive one computer from another, wrapped in the same end-to-end encryption as your phone.面向 macOS、Linux 与 Windows 的原生应用——用一台电脑操控另一台,端到端加密与手机同款。
fun reconnect(): Job { val backoff = 250 return scope.launch { log("relay: reopening") delay(backoff) } } // survives cancellation
≤ 767px — how Screen 1 stacks
- Sidebar mockup hides — the window shows the chat pane only, scaled to full column width.
- Window scales to 100% width; the traffic-light bar + meta line stay.
- Fleet card drops below the window as a full-width card (no overlap, no float offset).
- Mini-feature row collapses 3-up → 1-up; download buttons wrap to a stacked pair.
What 1.3 adds1.3 新增
Sharper output, any model, cleaner handoffs.输出更清晰,模型任你选,交接更干净。
1.3 sweats the moments between you and the terminal: reading code, choosing a model, and taking a session back without leaving a mess behind.1.3 打磨你与终端之间的每个瞬间:读代码、选模型、把会话接回来——还不留下一团乱。
Code you can actually read看得清的代码
Syntax highlighting lands in chat code blocks and the changed-files viewer — sql, py, kt, js and more, colored the moment it streams in.语法高亮同时进入聊天代码块和改动文件查看器——sql、py、kt、js 等,边流边着色。
SELECT id, email, created_at FROM users u JOIN sessions s ON s.user_id = u.id WHERE u.plan = 'pro' AND s.seats > 3; -- active pro seats
Any model, even yours任何模型,包括你自己的
Point cc-pocket at any model id. Third-party gateways like cc-switch just work, and --model takes whatever you give it.把 cc-pocket 指向任意模型 id。cc-switch 等第三方网关开箱即用,--model 照单全收。
Take over, don't fork接管,而不是分叉
Continue a terminal session from your phone and it resumes in place — no more duplicate branch. A fork only happens while the terminal is still writing.在手机上续接终端会话,它会原地恢复——不再产生重复分支。只有终端仍在写入时才会分叉。
fun reconnect() {
scope.launch {
delay(backoff)
open() // guarded
}
}
fun reconnect() { scope.launch { delay(250) open("relay") // reconnect guarded } }
Highlight scheme — 4 classes only
- keyword → --accent · #D97757 · .hl-k (fun / val / return / SELECT…)
- string → --success · #4FB477 · .hl-s
- number / literal → --warning · #E0A93B · .hl-n
- comment → --muted · #6B7177 · .hl-c